In this, we are going to see how to print a random pattern using 'cout' in C++ program.
The Code given below can be used in Turbo C++ Compiler.
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
cout<<"#### \n";
cout<<"#### \n";
cout<<"#### \n";
cout<<"#### \n";
getch();
}
The Code given below can be used in g++/gcc Compiler.
#include<iostream>
using namespace std;
int main()
{
cout<<"#### \n";
cout<<"#### \n";
cout<<"#### \n";
cout<<"#### \n";
return 0;
}
#ENJOY CODING
Â
Post a Comment
FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP